home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / gr564s.zip / MAKEFILE < prev    next >
Text File  |  1992-09-05  |  261b  |  15 lines

  1. # Master makefile for RCS
  2.  
  3. #    $Id: Makefile,v 1.2 1992/07/28 16:12:44 eggert Exp $
  4.  
  5. MAKE = make
  6. SHELL = /bin/sh
  7.  
  8. SUBDIR=    src man
  9. DESTDIR=
  10.  
  11. all install clean ::
  12.     for i in ${SUBDIR}; do \
  13.         (echo cd $$i && cd $$i && $(MAKE) DESTDIR=${DESTDIR} $@) || exit; \
  14.     done
  15.